home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / diskBoot.OpenProm / RCS / devConfig.c,v < prev    next >
Text File  |  1992-05-07  |  1KB  |  74 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     90.09.17.11.01.50;  author rab;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @/*
  26.  * devConfig.c --
  27.  *
  28.  *    Excerpts from the dev module in the kernel.
  29.  *
  30.  * Copyright 1985 Regents of the University of California
  31.  * All rights reserved.
  32.  */
  33.  
  34. #ifdef notdef
  35. static char rcsid[] = "$Header: /sprite/src/boot/sunprom/RCS/devConfig.c,v 1.1 90/09/17 11:01:50 rab Exp Locker: rab $ SPRITE (Berkeley)";
  36. #endif 
  37.  
  38. #include "sprite.h"
  39. #include "fsBoot.h"
  40. #include "vmSunConst.h"
  41. #include "machMon.h"
  42.  
  43.  
  44.  
  45.  
  46. /*
  47.  *----------------------------------------------------------------------
  48.  *
  49.  * dev_config --
  50.  *
  51.  *    Boottime device configuration.  This is a special version of this
  52.  *    routine that knows we will be using the PROM driver routines.
  53.  *
  54.  * Results:
  55.  *    None.
  56.  *
  57.  * Side effects:
  58.  *    This saves the pointer to the boot parameters in the global
  59.  *    fsDevice so that it is available to the SunPromDevOpen and
  60.  *    SunPromDevRead routines.
  61.  *
  62.  *----------------------------------------------------------------------
  63.  */
  64. void
  65. dev_config(devName, fsDevicePtr)
  66.     char *devName;        /* from PROM parameters */
  67.     Fs_Device *fsDevicePtr;    /* FS descriptor for the boot device */
  68. {
  69.     fsDevicePtr->serverID = -1;
  70.     fsDevicePtr->type = 0;
  71.     fsDevicePtr->data = (ClientData)devName;
  72. }
  73. @
  74.